home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue47 / Construc / ISAPI.dpr < prev    next >
Encoding:
Text File  |  1999-06-04  |  311 b   |  19 lines

  1. library ISAPI;
  2. uses
  3.   HTTPApp,
  4.   ISAPIApp,
  5.   WebModul in 'WebModul.pas' {WebModule2: TWebModule};
  6.  
  7. {$R *.RES}
  8.  
  9. exports
  10.   GetExtensionVersion,
  11.   HttpExtensionProc,
  12.   TerminateExtension;
  13.  
  14. begin
  15.   Application.Initialize;
  16.   Application.CreateForm(TWebModule2, WebModule2);
  17.   Application.Run;
  18. end.
  19.